home *** CD-ROM | disk | FTP | other *** search
Text File | 1987-10-26 | 867 b | 45 lines | [TEXT/PJMM] |
- UNIT TestGlobals;
-
- INTERFACE
-
- USES
- ROM85;
-
- CONST
- AppleMenu = 256; (* Resourse ID's & Menu Item #'s *)
- FileMenu = 257;
- TestItem = 1;
- Quititem = 3;
-
- AboutId = 260;
- NoteId = 261;
- CautionId = 262;
- StopId = 263;
-
- DlogH = 100; (* for SF Get & Put *)
- DlogV = 85;
-
- UntitledId = 300; (* Strings - For Window if needed *)
- Saveit = 301;
- UndoIt = 302;
-
- VAR
- Finished : Boolean; (* used to terminate the program *)
- Watch : Cursor; (* Cursors *)
- AppleMHandle, FileMHandle : MenuHandle;
- ResStr : Str255; (* For Converting the Resourse String *)
- ResStrHdl : StringHandle;
- Machine : integer;
-
- DragArea : Rect; (* rectangles *)
- GrowArea : Rect;
- Screen : Rect;
- ViewArea, DestArea : Rect;
- WindowArea : Rect;
-
- JeffsText : TEHandle;
- JeffsWindow : WindowPtr; (* pointer to Program window *)
-
- IMPLEMENTATION
-
- END.